このNotebookは、このイメージにインストールされたライブラリ/ツールが予期した通りにインストールされていることをチェックするものです。Travis CI上でpapermillにより実行されます。
This notebooks tests whether the installed apps work expectedly, and can be executed by papermill on Travis CI.
In [1]:
import sys
assert sys.version_info[0] == 3
numpy and matplotlib to draw charts
In [2]:
%matplotlib inline
In [3]:
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0.0, 10.0, 0.1)
plt.plot(x, np.sin(x))
Out[3]:
pandas to display tables
In [4]:
import pandas as pd
pd.DataFrame([(0, 1), (2, 3)], columns=['A', 'B'])
Out[4]:
In [5]:
!which ansible
In [6]:
!which wget
In [7]:
!which curl
In [8]:
!which papermill
In [9]:
!which ping
In [ ]: